home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / raytrace / renaisnc / lib.lha / Lib / Makefile < prev    next >
Encoding:
Makefile  |  1992-01-04  |  630 b   |  28 lines

  1. OFILES = 4D.o mstack.o randgen.o tree.o meshsub.o meshsym.o meshrand.o \
  2.     meshsurf.o
  3. CFLAGS = -O
  4.  
  5. CFILES = 4D.c mstack.c randgen.c tree.c meshsub.c meshsym.c meshrand.c \
  6.     meshsurf.c
  7.  
  8. libgraphics.a : $(OFILES)
  9.     ar ru libgraphics.a $(OFILES) 
  10.     ranlib libgraphics.a
  11.  
  12. # Easier to remember than llib-lglib.ln
  13. lintlib:  llib-lglib.ln
  14.     touch lintlib
  15.  
  16. llib-lglib.ln: $(CFILES)
  17.     lint -Cglib $(CFILES)
  18.  
  19.  
  20. 4D.o:        Math.h 4D.h fast.c
  21. mstack.o:    mstack.h 4D.h fast.c
  22. randgen.o:    randgen.h
  23. tree.o:        tree.h
  24. meshsub.o:      Math.h 4D.h mesh.h
  25. meshsym.o:    Math.h 4D.h mesh.h
  26. meshrand.o:    randgen.h Math.h 4D.h mesh.h
  27. meshsurf.o:     Math.h 4D.h mesh.h
  28.